if not GlobalObjManager:verifyNeighborId(GetPrimitiveParameter(0)) then
   print("Invalid Neighbor ID specified.")
   SetScriptReturnValue(false)
   return 
end
if not Neighborhood.new():isValidLot(GetPrimitiveParameter(1)) then
   print("Invalid Lot ID specified.")
   SetScriptReturnValue(false)
   return 
end
if not nBusiness.LotHasBusiness(GetPrimitiveParameter(1)) then
   print("Lot ", GetPrimitiveParameter(1), " does not have a business.")
   SetScriptReturnValue(false)
   return 
end
SetScriptReturnValue(not BusinessInfo.new(GetPrimitiveParameter(1)):addEmployee(GetPrimitiveParameter(0)))
print("Neighbor ID ", GetPrimitiveParameter(0), " added as an employee of lot ", GetPrimitiveParameter(1), "'s store.")
return 


